home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / fun_game1.swf / scripts / DefineSprite_283 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  417 b   |  14 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(this._parent.getBytesLoaded() >= this._parent.getBytesTotal())
  4.    {
  5.       this._parent.gotoAndStop("introL");
  6.       this.onEnterFrame = null;
  7.    }
  8.    else
  9.    {
  10.       this.barM._xscale = this._parent.getBytesLoaded() / this._parent.getBytesTotal() * 100;
  11.       this.win.text = this._parent.getBytesLoaded() + " / " + this._parent.getBytesTotal() + " Bytes";
  12.    }
  13. };
  14.